std::vector::begin, std::vector::cbegin
From Cppreference
| iterator begin();
| ||
| const_iterator begin() const;
| ||
| const_iterator cbegin() const;
| (C++0x feature) | |
Returns an iterator to the first element of the container.
Contents |
Parameters
(none)
Return value
iterator to the first element
Complexity
constant
See also
| returns an iterator to the end (public member function) | |